home *** CD-ROM | disk | FTP | other *** search
- #ifndef __HEX2C__
- #define __HEX2C__
- #define MAX_INTEL_HEX_RECORD_LENGTH 16
- typedef struct _INTEL_HEX_RECORD
- {
- UInt32 Length;
- UInt32 Address;
- UInt32 Type;
- UInt8 Data[MAX_INTEL_HEX_RECORD_LENGTH];
- } INTEL_HEX_RECORD, *PINTEL_HEX_RECORD;
- #endif